home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 06 / alib / close.asm < prev    next >
Assembly Source File  |  1991-06-25  |  225b  |  21 lines

  1.     include    asm.inc
  2.  
  3.     public    close_file
  4.  
  5.     .code
  6.     extn    ms_dos_strerror
  7.  
  8.  
  9. ;;    close file
  10. ;
  11. ;    entry    BX    handle
  12. ;    exit    Cf    if error
  13. ;    uses    AX
  14. ;
  15. close_file proc
  16.     mov    ah,3Eh
  17.     jmp    ms_dos_strerror
  18. close_file endp
  19.  
  20.     end
  21.